go.opentelemetry.io/otel/attribute.Value.vtype (field)

19 uses

	go.opentelemetry.io/otel/attribute (current package)
		value.go#L28: 	vtype    Type
		value.go#L66: 		vtype:   BOOL,
		value.go#L73: 	return Value{vtype: BOOLSLICE, slice: attribute.SliceValue(v)}
		value.go#L83: 	val := Value{vtype: INT64SLICE}
		value.go#L110: 		vtype:   INT64,
		value.go#L117: 	return Value{vtype: INT64SLICE, slice: attribute.SliceValue(v)}
		value.go#L123: 		vtype:   FLOAT64,
		value.go#L130: 	return Value{vtype: FLOAT64SLICE, slice: attribute.SliceValue(v)}
		value.go#L136: 		vtype:    STRING,
		value.go#L143: 	return Value{vtype: STRINGSLICE, slice: attribute.SliceValue(v)}
		value.go#L149: 		vtype:    BYTESLICE,
		value.go#L156: 	return Value{vtype: SLICE, slice: sliceValue(v)}
		value.go#L161: 	return v.vtype
		value.go#L173: 	if v.vtype != BOOLSLICE {
		value.go#L192: 	if v.vtype != INT64SLICE {
		value.go#L211: 	if v.vtype != FLOAT64SLICE {
		value.go#L230: 	if v.vtype != STRINGSLICE {
		value.go#L243: 	if v.vtype != SLICE {
		value.go#L283: 	if v.vtype != BYTESLICE {